home *** CD-ROM | disk | FTP | other *** search
/ Assassins - Ultimate CD Games Collection 2 / Assassins 2 - Ultimate Games No. 2 (1995)(Weird Science)[!][Amiga-CD32-CDTV].iso / cards-&-quiz / machine_poker / machine poker.doc < prev    next >
Text File  |  1995-01-01  |  5KB  |  83 lines

  1.  
  2.                        *** M A C H I N E   P O K E R ***
  3.  
  4.                 Written in 1993 for AMOS Basic by Glenn N Babic
  5.  
  6.  
  7.  
  8. This program simulates the sort of Poker machine that can be found in casinoes
  9. and private clubs around Australia.  However, there are many different varia-
  10. tions of these machines so this simulator will not suit all of them.  Some of
  11. the source code is easy to edit (see NB below) but for machines that, say, use
  12. the suits of seven as "wild cards", changes would be much more complicated.
  13.  
  14. Instructions
  15. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  16. To enter credits (used for betting) into the computer, the ENTER key in used
  17. like a coin slot, for putting in $1 coins (which buy five credits, as each
  18. credit is worth 20¢).  The UP and DOWN cursor keys increase and decrease your
  19. bet respectively by a credit (a maximum of 20 credits can be bet at any one
  20. time).  The SPACE BAR is used to deal a hand after betting and to redeal for any
  21. discarded cards.  RETURN allows you to "Take Score" (to collect any winnings
  22. after a hand is complete).  To hold one of the cards, the first five function
  23. keys are used, representing the five cards in their respective orders.  To
  24. "unhold" a card, the corresponding function key should be pressed a second time.
  25. When a winning hand has been made, the player can go for double or nothing
  26. instead of taking score by pressing "D".  A face down card will be displayed and
  27. its value must be determined.  Press "<" for small (ace to six) and ">" for big
  28. (eight to king).  If the guess is correct then the value of the winning hand
  29. will be seen to double.  "Doubling-Up" can continue until the player "Takes
  30. Score" or guesses incorrectly and that hand's winnings are lost.  You can see
  31. how much money you have entered into the "machine" and also how much you have
  32. won or lost (profit-wise) at the bottom of the screen in yellow text.  If you
  33. wish to quit or restart the program then press ESC while you have a bet of 0 and
  34. you will be given these options ("Q" for quit, "R" for restart, and "C" for
  35. cancel).  A line of wide text beneath the cards tells you when most of these
  36. functions can be performed.
  37.  
  38. Nota Bene!
  39. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  40. Although it is not illegal to play these games, it IS for unlicensed venues to
  41. pay-out (though that doesn't necessarily stop them!).  Hopefully you will find
  42. this program serves useful practise while offering the comfort that if you lose
  43. big you will be none the poorer (and similarly the dissapointment that if you
  44. win big you will be none the richer!).  Don't let this program motivate you to
  45. play the real money guzzling machines - using this program sensibly (i.e.
  46. entering an amount of money you could actually afford to gamble and betting a
  47. number of credits you afford to risk) shows that you ultimately lose more than
  48. you win (obviously, or the machines wouldn't make a profit, now would they?).
  49. As different machines work differently, I have noted in the procedure
  50. SET_UP_PLAYING_SCREEN how to change the data for the amounts that winning hands
  51. pay-out.  Also in this procedure I have included a special function that changes
  52. "Aces Or Better" into "Jacks Or Better" (one pair of jacks, queens, kings, or
  53. aces) if activated.  Deleting the apostrophes (') in front of several lines in
  54. this procedure will make the game play like some of the machines at Perth's
  55. Burswood Casino.
  56.  
  57. More Technical Info
  58. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  59. Although it didn't take too much mind racking to write this program, the artwork
  60. for the cards took some time and planning.  If you would like to use the cards
  61. in your own programs, then you will have to open up at least an eight colour
  62. screen and have the same icon bank loaded (the IFF picture from which they were
  63. cut should be on the disk).  Then whenever you wish to draw a card on the
  64. screen, call procedure MAKE_CARD[CX,CY,NUMBER,SUIT] where CX,CY is the co-
  65. ordinate of the top-left corner of the card, NUMBER is its value (1=ace to 13=
  66. king) and SUIT is its suit! (1=spades, 2=clubs, 3=hearts and 4=diamonds).  The
  67. cards in this game are quite large and so the pictures could be shrunk in size
  68. through Deluxe Paint etc. (Klondike.AMOS also on this disk uses a hires screen
  69. so the cards are half the height and width.  Also the cards in Klondike differ a
  70. little, as instead of having shadows they're surrounded in a black border.
  71. Because of this, the MAKE_CARD procedure in Klondike has a minor change to that
  72. in Machine Poker).  If you do decide to use these cards, please credit me and
  73. keep all the designs intact (especially the Ace of Spades and the design on the
  74. back of the cards - they have my initials on them!).
  75.  
  76. Post Script!
  77. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  78. I have managed to get ALL the winning hands (Yes, even the Royal Flush!) on this
  79. game.  Let me see anyone else do that!
  80.  
  81.                                                                  - Glenn N Babic
  82.                                                                    Reg. #1646
  83.